home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-03 / qbwiz13.zip / SOURCE.ZIP / PAGE.ASM < prev    next >
Assembly Source File  |  1992-07-14  |  1KB  |  46 lines

  1. comment #
  2.  
  3.    +----------------------------------------------------------------------+
  4.    |                                                                      |
  5.    |         QBWiz  Copyright (c) 1990-1992  Thomas G. Hanlin III         |
  6.    |                                                                      |
  7.    |                       QuickBasic Access Library                      |
  8.    |                                                                      |
  9.    +----------------------------------------------------------------------+
  10.  
  11. #
  12.  
  13. public  ACTPAGE, VISPAGE
  14.  
  15.  
  16. .model medium
  17.  
  18. .code
  19.  
  20.  
  21.  
  22. ACTPAGE       proc                     ; get active display page
  23.               xor            ax,ax
  24.               mov            al,b$ActPage
  25.               ret
  26. ACTPAGE       endp                     ; get active display page
  27.  
  28.  
  29.  
  30. VISPAGE       proc                     ; get visible display page
  31.               xor            ax,ax
  32.               mov            al,b$VisPage
  33.               ret
  34. VISPAGE       endp                     ; get visible display page
  35.  
  36.  
  37.  
  38. .data
  39.  
  40. extrn b$ActPage: byte
  41. extrn b$VisPage: byte
  42.  
  43.  
  44.  
  45.               end
  46.